home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 35
/
Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso
/
Aminet
/
dev
/
src
/
stefanb_src.lha
/
Private_Projects
/
yath
/
beginio.a
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-09-06
|
477 b
|
19 lines
; @BeginIO is still missing in amigasr.lib
XDEF @BeginIO
; C Interface: void BeginIO(struct IORequest *ior);
; A0
@BeginIO:
move.l a6,-(sp) ; Save A6
move.l 20(a0),a6 ; ior->io_Device in A6
move.l a0,a1 ; ior in A1
jsr -30(a6) ; Call BeginIO directly
move.l (sp)+,a6 ; Restore A6
rts ; The end...
END